-
Notifications
You must be signed in to change notification settings - Fork 7
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for Symfony 7 #55
Add support for Symfony 7 #55
Conversation
f015843
to
76f5e43
Compare
b5b301d
to
b2adc9b
Compare
b2adc9b
to
dce4c0b
Compare
"doctrine/doctrine-bundle": "^1.5 || ^2.0", | ||
"doctrine/data-fixtures": "^1.3.3" | ||
"doctrine/data-fixtures": "^1.3.3", | ||
"phpunit/phpunit": "^9.6.5 || ^10", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
PHPUnit 11 is not supported yet by Symfony because of a error / exception handler registration conflict
"symfony/expression-language": "^5.4 || ^6.0 || ^7.0", | ||
"symfony/config": "^5.4 || ^6.0 || ^7.0", | ||
"symfony/console": "^5.4 || ^6.0 || ^7.0", | ||
"symfony/process": "^5.4 || ^6.0 || ^7.0", | ||
"doctrine/orm": "^2.5.3" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Upgrade to doctrine/orm 3 can not be done yet as inserting a "Single Entity" via entityManager->flush($entity);
is not longer supported.
@@ -63,7 +63,7 @@ protected function configure() | |||
/** | |||
* {@inheritdoc} | |||
*/ | |||
protected function execute(InputInterface $input, OutputInterface $output) | |||
protected function execute(InputInterface $input, OutputInterface $output): int |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Small but required BC Break for Symfony 7.
Requires: